body {
  margin: 0;
  background-color: #150578;
  color: #ffffff;
  font-family: "PT Serif", serif;
}
.container {
  background-color: rgba(120, 192, 224, 0.6);
  margin: 40px auto 30px;
  padding: 50px 100px;
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.container h1 {
  margin-bottom: 25px;
  font-size: 2.4rem;
}
.container h2 {
  color: #ffffff;
  margin-top: 30px;
  font-size: 1.7rem;
  border-bottom: 2px solid #99ccff;
  display: inline-block;
  padding-bottom: 5px;
}
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.image-section img {
  width: 85%;
  max-width: 550px;
  height: auto;
  border-radius: 15px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.container p {
  line-height: 1.7;
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.05rem;
  text-align: justify;
}
.button-section {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}
.back-button {
  display: inline-block;
  text-decoration: none;
  background-color: #4a90e2;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.back-button:hover {
  background-color: #150578;
  transform: scale(1.05);
  filter: brightness(1.2);
}
.collecting-table {
  width: 95%;
  max-width: 1200px;
  border-collapse: collapse;
  background-color: rgba(120, 192, 224, 0.6);
  border-radius: 10px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  margin: 40px auto 60px auto;
}
.collecting-table th,
.collecting-table td {
  padding: 18px 25px;
  text-align: left;
  font-size: 1rem;
}
.collecting-table th {
  background-color: rgba(0, 26, 102, 0.8);
  font-weight: bold;
}
.collecting-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}
.collecting-table tr:hover {
  background-color: #150578;
  transition: 0.3s;
}
footer {
  background-color: rgba(0, 26, 102, 0.9);
  text-align: center;
  padding: 15px 0;
  width: 100%;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  color: #ffffff;
}
footer a {
  color: #99ccff;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .container {
    padding: 40px 50px;
    width: 95%;
  }
  .image-section img {
    width: 90%;
    max-width: 450px;
  }
  .collecting-table th, .collecting-table td {
    padding: 12px;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 25px 20px;
    margin-top: 20px;
  }
  .container h1 {
    font-size: 1.9rem;
  }
  .container h2 {
    font-size: 1.3rem;
  }
  .image-section img {
    width: 100%;
    max-width: 350px;
  }
  .collecting-table {
    font-size: 0.85rem;
  }
  .back-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}
.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}